#carousel{
    overflow:hidden;
 margin-top:7em;   
     padding-bottom: 3%;
}
#navigationImages{
        overflow:hidden;

    /*margin-top:7em*/
    
    }


.swiper-button-next, .swiper-button-prev {
    width: 48px!important; /* Setting the width of the button */
    height: 48px!important; /* Setting the height of the button */
    color: #729B55!important;
    background-color: white;

    border-radius: 50%!important; /* Making the background circular */
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25)!important; /* Adding box shadow */

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Setting the arrow size */
.swiper-button-next::after, .swiper-button-prev::after {
    width: 8px!important; /* Setting the width of the arrow */
    height: 16px!important; /* Setting the height of the arrow */
    color:#006535!important;
    font-size:16px!important;
    font-weight:900!important;
 /* Setting the arrow color */
}
@media (min-width:1024px){
.swiper-button-prev{
        left: var(--swiper-navigation-sides-offset,146px)!important;
}
.swiper-button-next{
        right: var(--swiper-navigation-sides-offset,146px)!important;
}
}
    
    
.swiper-button-prev, .swiper-rtl .swiper-button-next{
top : calc(37% - 7em)!important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    top : calc(37% - 7em)!important;

    }
.swiper-pagination-bullet {
        width:12px!important;
        height:12px!important;
    background-color: #BFE3A8!important; /* Inactive background color */
}

.swiper-pagination-bullet-active {
           width:12px!important;
        height:12px!important;
    background-color: #729B55!important; /* Active bullet color */
}


#navigationImages img {
    font-family: 'FuturaGreek', 'sans-serif';
}

#homeCarousel .card-img-overlay {
    background-color: rgba(0, 0, 0, 0.82);
}

#homeCarousel .carousel-item {
    height: 480px;
    /*margin-top: 7rem;*/
    background-color: #729954;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /*background-image: url("/dist/images/Pr/home_bg.svg");*/
}


#homeCarousel .carousel-indicators {
    bottom: 50px;
}

#homeCarousel .carousel-indicators li {

    width: 101px;
    height: 4px;
    border-radius: 5.3px;
    background-color: #ffffff;

}


#homeCarousel .heading {
    position: absolute;
    background: transparent;
    z-index: 1;
    /*height: 480px;*/
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#homeCarousel .card-title {
    width: 100%;
    font-size: 42px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.29;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    padding-bottom: 3rem;
}

#homeCarousel .card-subtitle {
    font-size: 60px;
    font-weight: normal;
    font-style: italic;
    font-stretch: normal;
    line-height: 1.08;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
}

#homeCarousel .card-subtitle span {
    font-family: 'Lucida Grande';
    font-style: normal;
}

#homeCarousel .card-text {
    width: 700.3px;
    font-size: 22px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    margin: 1.5rem auto 2.5rem auto;
}

#homeCarousel .more-btn {
    width: 210px;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid;
}

#homeCarousel .more-btn:hover {
    opacity: 0.8;

}

#homeCarousel .arrow-icon {
    width: 9.8px;
    height: 7.8px;
    object-fit: contain;
    margin-left: 0.5rem;
}


#homeCarousel .slidingVertical {
    display: inline;
}

#homeCarousel .fixed-part {
    margin-left: 105px;
}

#homeCarousel .slidingVertical span {
    animation: topToBottom 9s linear infinite 0s;
    -ms-animation: topToBottom 9s linear infinite 0s;
    -webkit-animation: topToBottom 9s linear infinite 0s;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    text-align: center;
    width: 100px;
    font-weight: bold;
    color: #f28806;

}

#homeCarousel .slidingVertical span:nth-child(2) {
    animation-delay: 3s;
    -ms-animation-delay: 3s;
    -webkit-animation-delay: 3s;
}

#homeCarousel .slidingVertical span:nth-child(3) {
    animation-delay: 6s;
    -ms-animation-delay: 6s;
    -webkit-animation-delay: 6s;
}


/*topToBottom Animation*/
@-moz-keyframes topToBottom {
    0% {
        opacity: 0;
    }
    0% {
        opacity: 0;
        -moz-transform: translateY(-25px);
    }
    10% {
        opacity: 1;
        -moz-transform: translateY(0px);
    }
    30% {
        opacity: 1;
        -moz-transform: translateY(0px);
    }
    40% {
        opacity: 0;
        -moz-transform: translateY(25px);
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes topToBottom {
    0% {
        opacity: 0;
    }
    0% {
        opacity: 0;
        -webkit-transform: translateY(-25px);
    }
    10% {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }
    40% {
        opacity: 0;
        -webkit-transform: translateY(25px);
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-ms-keyframes topToBottom {
    0% {
        opacity: 0;
    }
    0% {
        opacity: 0;
        -ms-transform: translateY(-25px);
    }
    10% {
        opacity: 1;
        -ms-transform: translateY(0px);
    }
    30% {
        opacity: 1;
        -ms-transform: translateY(0px);
    }
    40% {
        opacity: 0;
        -ms-transform: translateY(25px);
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


#whyarmanet .col-16.col-md-8.col-xl-5 {

    flex-basis: 33.33333%;
    max-width: 33.33333%;
    margin-bottom: 2rem;
}


#whyarmanet .card {
    width: 100%;
    height: auto;
    border-radius: 0;
    background-color: transparent;
    border: none;
    margin-left: auto;
    margin-right: auto;
}

#whyarmanet .card-body {
    padding: 2rem 3rem;
}

#whyarmanet .oval {
    width: 132px;
    height: 132px;
    border: 1px solid;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 2rem;
}


#whyarmanet .card-img-top {
    width: 60px;
    height: 76px;
    object-fit: contain;
}

#whyarmanet .card-title {
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #242323;
    margin-top: 1rem;
}

#whyarmanet .card-line {
    width: 48.7px;
    height: 7px;
    margin-top: 1.5rem;
}

#whyarmanet .card-text {
    width: 450px;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: center;
    color: #353535;
}


#services .card {
    height: 1080px;
    border: none;
    background-color: #000000;
    border-radius: 0;
}

#services .card-img-overlay {
    background-color: rgba(0, 0, 0, 0.75);
    border: none;
    border-radius: 0;
    width: 100%;
    height: 1080px;
}

#services .card-img {
    border: none;
    border-radius: 0;
    width: 100%;
    height: 1080px;
    object-fit: cover;
}

#services .card.postRisk,
#services .card.postRisk .card-img-overlay,
#services .card.postRisk .card-img {
    height: 880px;
}

#services .nav-pills .nav-item {
    width: 225px;
}

#services .nav-pills .nav-link {
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    border: 1px solid #8cc63f;
}

#services .nav-pills .nav-item:first-child .nav-link {
    border-right-width: 0;
    border-radius: 32px 0 0 32px;
}

#services .nav-pills .nav-item:last-child .nav-link {
    border-left-width: 0;
    border-radius: 0 32px 32px 0;
}

#services .nav-pills .nav-link.active,
#services .nav-pills .show > .nav-link {
    background-color: #8cc63f;
}


#services .service-icon {
    width: 60px;
    height: 55.2px;
    object-fit: contain;
}

#services .service-title {
    height: 100px;
    font-size: 17px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.35;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    margin-top: 2.5rem;
}

#services .tab-pane .row {
    margin-top: 4rem;
}

#services #pills-pre .row {
    margin-top: 4rem;
}

#services #pills-post .row {
    margin-top: 6rem;
}

#portfolio {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

#portfolio #portfolio-slider {
    margin-top: 6rem;
}

#portfolio .zenith-img {
    width: 84.7px;
    height: 88.7px;
    object-fit: contain;
}

#portfolio .ba-img {
    width: 142px;
    height: 57px;
    object-fit: contain;
}

#portfolio .bp-img {
    width: 75px;
    height: 98px;
    object-fit: contain;
}

#portfolio .olympic-img {
    width: 117px;
    height: 53px;
    object-fit: contain;
}

#portfolio .first-img {
    width: 155px;
    height: 42px;
    object-fit: contain;
}

#portfolio .lloyds-img {
    width: 122px;
    height: 56px;
    object-fit: contain;
}

#portfolio .barclays-img {
    width: 147px;
    height: 25px;
    object-fit: contain;
}

#portfolio #portfolio-slider .slick-track {
    display: flex;
    align-items: center;
}


@media (max-width: 1439px) {


    #homeCarousel .card {
        width: 580px;
    }

    #homeCarousel .offer-btn {
        width: 520px;
    }


}


@media (max-width: 1199px) {


    #whyarmanet .col-16.col-md-8.col-xl-5 {

        flex-basis: 50%;
        max-width: 50%;
    }


}


@media (max-width: 969px) {


    #whyarmanet .card-text {
        font-size: 14px;
    }

    #services .card-img-overlay,
    #services .card,
    #services .card-img {
        height: 1073px;
    }

    #services .card.postRisk,
    #services .card.postRisk .card-img-overlay,
    #services .card.postRisk .card-img {
        height: 840px;
    }


    #services .service-title {
        font-size: 13px;
    }


}


@media (max-width: 749px) {


    #homeCarousel .card-text {
        width: 459.3px;
    }


    #whyarmanet .card-text {
        font-size: 18px;
    }

    #whyarmanet .col-16.col-md-8.col-xl-5 {

        flex-basis: 100%;
        max-width: 100%;
    }

    #services .card-img-overlay,
    #services .card,
    #services .card-img {
        height: 1538px;
    }

    #services .card.postRisk,
    #services .card.postRisk .card-img-overlay,
    #services .card.postRisk .card-img {
        height: 980px;
    }

    #services .service-title {
        height: 50px;
    }


}


@media (max-width: 575px) {

    #services .nav-pills .nav-item {
        width: 50%;
    }
}


@media (max-width: 480px) {
    .fixed-top{
        position: unset;
        }
        #carousel{
 margin-top:0em;   
}
#navigationImages{
    margin-top:0em}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
top : calc(35% - 7em)!important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    top : calc(35% - 7em)!important;

    }

    #homeCarousel .card-title {
        font-size: 26px;
    }

    #homeCarousel .card-text {
        width: 300px;
    }


    #services .nav-pills .nav-link {
        padding-left: 0;
        padding-right: 0;
        font-size: 11px;
    }
    #homeCarousel .carousel-item {
        /*height: 355px;*/
        background-position: 10% 50%;
    }

}
.swiper-pagination{
    top:1em !important;
    position:relative!important;
}
 .my-video {
      width: 100%;
      max-height: 480px;
      object-fit: cover;
    }

@media (max-width: 600px) {
    .my-video {
        width:auto;
      max-width: fit-content; /* Adjust as per your requirement */
     
    }
  }




